home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / cat.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  457 b   |  29 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class CAT
  5.  
  6. inherit 
  7.    QUADRUPED
  8.       redefine fornicate_with, is_cat
  9.       end;
  10.  
  11. feature 
  12.    
  13.    is_cat: BOOLEAN is
  14.       do
  15.      Result := true;
  16.       end;
  17.  
  18.    fornicate_with(quadrupede: CAT): CAT is
  19.       do
  20.          Result := Current;
  21.       end;
  22.    
  23.    cry is
  24.       do
  25.      std_output.put_string("MIAOU");
  26.       end;
  27.    
  28. end -- CAT
  29.